home *** CD-ROM | disk | FTP | other *** search
/ Adobe Graphics & Publishing SDK 1996 December / Adobe Graphics & Publishing SDK 1996 December.iso / mac / PageMaker 6.5 SDK Mac / SourceCode / PageMakerClassLibrary / Queries / PGetFillAndLine.h < prev    next >
C/C++ Source or Header  |  1996-09-04  |  793b  |  37 lines

  1. /*
  2.  *--- PGetFillAndLine.h ---------------------------------------------------
  3.  * Copyright (c) 1995-96 Adobe Systems Incorporated.  All rights reserved.
  4.  * Created on Sun, Oct 22, 1995 @ 4:49 PM by Paul Ferguson.
  5.  *
  6.  * Description:
  7.  *-------------------------------------------------------------------------
  8.  */
  9. #ifndef __PGetFillAndLine__
  10. #define __PGetFillAndLine__
  11.  
  12. #include "PHandleQuery.h"
  13.  
  14. class PGetFillAndLine : public PHandleQuery
  15. {
  16.  
  17. public:
  18.  
  19.     PGetFillAndLine();
  20.  
  21.     short            cFillStyle;
  22.     const char *    sFillColor;
  23.     PMBool            bFillOverprint;
  24.     short            cLineStyle;
  25.     PMBool            bReverse;
  26.     short            dWeight;
  27.     PMBool            bOpaque;
  28.     const char *    sLineColor;
  29.     PMBool            bLineOverprint;
  30.     short            nFillTint;
  31.     short            nLineTint;
  32. };
  33.  
  34. #endif
  35.  
  36. // end of PGetFillAndLine.h
  37.